DailyAnalyticsUIState

data class DailyAnalyticsUIState(val pastEvaluations: List<DailyEvaluationEntry> = listOf(), val selectedDate: LocalDate? = null)

Represents the UI state for daily mood analytics. This includes historical evaluations and the currently selected date.

Constructors

Link copied to clipboard
constructor(pastEvaluations: List<DailyEvaluationEntry> = listOf(), selectedDate: LocalDate? = null)

Properties

Link copied to clipboard

A list of past daily mood evaluations.

Link copied to clipboard
val selectedDate: LocalDate? = null

The date currently selected by the user.